home *** CD-ROM | disk | FTP | other *** search
/ CD Loisirs 2 / CD Loisirs 02 / CD Loisirs CD 002.mdf / pc / nympheas / sources / s3_001somm.k < prev    next >
Encoding:
Text File  |  1994-01-01  |  2.0 KB  |  145 lines

  1. object S3_001SOMM is MEDIADISTRIBUTOR
  2. with
  3.     Duration is -1;
  4.     X is 0; Y is 0; Width is 640; Height is 480;
  5.     Items is [
  6.         S3A9_TIME_OUT,
  7.         S3A3_001_PIC,
  8.         S3A4_AIDE,
  9.         S3A5_ALBUM,
  10.         S3A6_TABLEAUX,
  11.         S3A7_BALADES,
  12.         S3A8_AUTEURS
  13.     ];
  14. end;
  15.  
  16. object S3A9_TIME_OUT is MEDIADELEGATOR
  17. has
  18.     
  19.     OffScreen()
  20.         do
  21.             self.GoToBeginning();
  22.             self.Run(true);
  23.         end;
  24.     
  25.     Finished()
  26.         do
  27.             APPLICATION.GoTo(S156_002COV1);
  28.         end;
  29.     
  30. with
  31.     Duration is 1600;
  32.     X is 85; Y is 132; Width is 74; Height is 60;
  33. end;
  34.  
  35. object S3A3_001_PIC is MEDIADELEGATOR
  36. has
  37.     
  38.     OffScreen()
  39.         do
  40.             TRANSITION.Set(WipeTop, 300);
  41.             self.Show(true);
  42.         end;
  43.     
  44. with
  45.     Target is C288_001_PIC;
  46.     Duration is -1;
  47.     X is 0; Y is 0; Width is 640; Height is 480;
  48. end;
  49.  
  50. object S3A4_AIDE is MEDIADELEGATOR
  51. has
  52.     
  53.     OffScreen()
  54.         do
  55.             self.Enable(true);
  56.             self.Show(true);
  57.         end;
  58.     
  59.     MouseUp(theX, theY)
  60.         do
  61.             APPLICATION.GoTo(S4_004AIDE);
  62.         end;
  63.     
  64. with
  65.     Duration is -1;
  66.     X is 203; Y is 108; Width is 50; Height is 49;
  67. end;
  68.  
  69. object S3A5_ALBUM is MEDIADELEGATOR
  70. has
  71.     
  72.     OffScreen()
  73.         do
  74.             self.Enable(true);
  75.             self.Show(true);
  76.         end;
  77.     
  78.     MouseUp(theX, theY)
  79.         do
  80.             APPLICATION.GoTo(S5_005ALBU);
  81.         end;
  82.     
  83. with
  84.     Duration is -1;
  85.     X is 203; Y is 166; Width is 50; Height is 50;
  86. end;
  87.  
  88. object S3A6_TABLEAUX is MEDIADELEGATOR
  89. has
  90.     
  91.     OffScreen()
  92.         do
  93.             self.Enable(true);
  94.             self.Show(true);
  95.         end;
  96.     
  97.     MouseUp(theX, theY)
  98.         do
  99.             APPLICATION.GoTo(S6_006TABL);
  100.         end;
  101.     
  102. with
  103.     Duration is -1;
  104.     X is 203; Y is 224; Width is 49; Height is 49;
  105. end;
  106.  
  107. object S3A7_BALADES is MEDIADELEGATOR
  108. has
  109.     
  110.     OffScreen()
  111.         do
  112.             self.Enable(true);
  113.             self.Show(true);
  114.         end;
  115.     
  116.     MouseUp(theX, theY)
  117.         do
  118.             APPLICATION.GoTo(S7_BALADES_SON);
  119.         end;
  120.     
  121. with
  122.     Duration is -1;
  123.     X is 203; Y is 283; Width is 49; Height is 49;
  124. end;
  125.  
  126. object S3A8_AUTEURS is MEDIADELEGATOR
  127. has
  128.     
  129.     OffScreen()
  130.         do
  131.             self.Enable(true);
  132.             self.Show(true);
  133.         end;
  134.     
  135.     MouseUp(theX, theY)
  136.         do
  137.             APPLICATION.GoTo(S9_009AUTE);
  138.         end;
  139.     
  140. with
  141.     Duration is -1;
  142.     X is 203; Y is 342; Width is 48; Height is 49;
  143. end;
  144.  
  145.